runtime.g.syscallsp (field)
33 uses
runtime (current package)
cgocall.go#L335: savedsp := unsafe.Pointer(gp.syscallsp)
heapdump.go#L342: if gp.syscallsp != 0 {
heapdump.go#L343: sp = gp.syscallsp
mgcmark.go#L863: if gp.syscallsp != 0 {
mgcmark.go#L864: sp = gp.syscallsp // If in a system call this is the stack pointer (gp.sched.sp can be 0 in this case on Windows).
panic.go#L1469: if status&^_Gscan != _Grunning || gp.syscallsp != 0 {
proc.go#L2439: gp.syscallsp = gp.sched.sp
proc.go#L4474: gp.syscallsp = sp
proc.go#L4483: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4485: print("entersyscall inconsistent sp ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
proc.go#L4621: gp.syscallsp = gp.sched.sp
proc.go#L4624: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4627: sp3 := gp.syscallsp
proc.go#L4634: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4636: print("entersyscallblock inconsistent sp ", hex(sp), " ", hex(gp.sched.sp), " ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
proc.go#L4688: if sys.GetCallerSP() > gp.syscallsp {
proc.go#L4734: gp.syscallsp = 0
proc.go#L4764: gp.syscallsp = 0
proc.go#L5517: if mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp != 0 {
proc.go#L5533: u.initAt(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, unwindSilentErrors)
runtime2.go#L412: syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
stack.go#L859: if gp.syscallsp != 0 {
stack.go#L984: gp.syscallsp = morebuf.sp
stack.go#L1150: if gp.syscallsp != 0 {
traceback.go#L152: if gp.syscallsp != 0 {
traceback.go#L154: sp0 = gp.syscallsp
traceback.go#L223: isSyscall := frame.pc == pc0 && frame.sp == sp0 && pc0 == gp.syscallpc && sp0 == gp.syscallsp
traceback.go#L825: if iscgo && gp.m != nil && gp.m.ncgo > 0 && gp.syscallsp != 0 && gp.m.cgoCallers != nil && gp.m.cgoCallers[0] != 0 {
traceback.go#L843: sp = gp.syscallsp
tracestack.go#L111: if gp.syscallsp != 0 {